home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / system / ffg202.zip / UTIL_BAT.ZIP / INIEDIT.BAT < prev    next >
DOS Batch File  |  1994-12-05  |  810b  |  33 lines

  1. @echo off
  2. if %1.==/?. goto USAGE
  3.   echo Searching for .INI files to edit...
  4.   ffg /fp /qfm /p0 > list.ped *:*.INI %1 %2 %3 %4 %5 %6 %7 %8 %9
  5.   if errorlevel 101 if not errorlevel 102 goto INT_FOUND
  6.   if errorlevel 100 if not errorlevel 101 goto INT_NONE
  7.   if errorlevel 1   if not errorlevel 2   goto FOUND
  8.   goto NONE_FOUND
  9. :INT_NONE
  10.   echo.
  11.   echo WARNING!: Search interrupted by user, more files may exist.
  12.   pause
  13. :NONE_FOUND
  14.   echo.
  15.   echo No files found.
  16.   goto END
  17. :INT_FOUND
  18.   echo.
  19.   echo WARNING!: Search interrupted by user, more files may exist.
  20.   pause
  21. :FOUND
  22.   echo Loading files into editor...
  23.   pe @list.ped
  24.   goto END
  25. :USAGE
  26.   echo.
  27.   echo Edits .INI files on all drives.
  28.   echo.
  29.   echo USAGE: %0 [FFG Options]
  30.   echo.
  31. :END
  32.   if exist list.ped del list.ped
  33.